home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / MacPowerオリジナル / Edutainment World / チャンプジム for DEMO / DIR / shared.cst / 00006_Script_6 < prev    next >
Text File  |  1997-09-29  |  517b  |  32 lines

  1. --Wait
  2. on Cwait n
  3.   
  4.   --startTimer
  5.   put the timer into T1
  6.   put the timer into T2
  7.   repeat while T1+n > T2
  8.     put the timer into T2
  9.     if the mouseDown = true then exit
  10.   end repeat  
  11.   
  12. end
  13.  
  14. --**************
  15. on wait n
  16.   
  17.   --startTimer
  18.   put (the timer)+n into T1
  19.   put the timer into T2
  20.   repeat while T1 > T2
  21.     put the timer into T2
  22.   end repeat  
  23. end
  24.  
  25. --**************
  26. on waitSOUND n
  27.   updateStage
  28.   --startTimer
  29.   repeat while soundBusy(n)=1
  30.   end repeat
  31.   puppetSound 0
  32. end